Commands run, reads remaining and domain-level classifications


Initial preparation

Upload samples to server:

rsync --partial --progress W0.tar.bz2 robyn@vulcan.pharmacology.dal.ca:/home/robyn/
rsync --partial --progress W06.tar.bz2 robyn@vulcan.pharmacology.dal.ca:/home/robyn/
rsync --partial --progress W12.tar.bz2 robyn@vulcan.pharmacology.dal.ca:/home/robyn/

Unzip and then gzip:

tar -xf W0.tar.bz2
for i in W0_samples/*.fastq ; do gzip $i ; done

tar -xf W06.tar.bz2
for i in W06_samples/*.fastq ; do gzip $i ; done

tar -xf W12.tar.bz2
for i in W12_samples/*.fastq ; do gzip $i ; done

Kneaddata

Commands run:

parallel -j 1 'kneaddata -i {} -o kneaddata_out_W0/ \
-db /home/shared/bowtiedb/GRCh38_PhiX --trimmomatic /home/robyn/tools/Trimmomatic-0.39/ \
-t 12 --trimmomatic-options "SLIDINGWINDOW:4:20 MINLEN:50" \
--bowtie2-options "--sensitive --dovetail" --remove-intermediate-output' \
 ::: W0_samples/*.fastq.gz
 kneaddata_read_count_table --input kneaddata_out_W0 --output W0_kneaddata_read_counts.txt
 mkdir W0_decontaminated
 for i in kneaddata_out_W0/*kneaddata.fastq ; do mv $i W0_decontaminated ; done
 
 parallel -j 1 'kneaddata -i {} -o kneaddata_out_W06/ \
-db /home/shared/bowtiedb/GRCh38_PhiX --trimmomatic /home/robyn/tools/Trimmomatic-0.39/ \
-t 12 --trimmomatic-options "SLIDINGWINDOW:4:20 MINLEN:50" \
--bowtie2-options "--sensitive --dovetail" --remove-intermediate-output' \
 ::: W06_samples/*.fastq.gz
 kneaddata_read_count_table --input kneaddata_out_W06 --output W06_kneaddata_read_counts.txt
 mkdir W06_decontaminated
 for i in kneaddata_out_W06/*kneaddata.fastq ; do mv $i W06_decontaminated ; done
 
 parallel -j 1 'kneaddata -i {} -o kneaddata_out_W12/ \
-db /home/shared/bowtiedb/GRCh38_PhiX --trimmomatic /home/robyn/tools/Trimmomatic-0.39/ \
-t 12 --trimmomatic-options "SLIDINGWINDOW:4:20 MINLEN:50" \
--bowtie2-options "--sensitive --dovetail" --remove-intermediate-output' \
 ::: W12_samples/*.fastq.gz
 kneaddata_read_count_table --input kneaddata_out_W12 --output W12_kneaddata_read_counts.txt
 mkdir W12_decontaminated
 for i in kneaddata_out_W12/*kneaddata.fastq ; do mv $i W12_decontaminated ; done

W0 percent reads kept:

W06 percent reads kept:

W12 percent reads kept:

Kraken2 and Bracken

Commands run (with RefSeq Complete v93):

sudo mount -t ramfs none /scratch/ramdisk/
sudo cp -a /home/shared/Kraken2.0.8_Bracken150mer_RefSeqCompleteV93/ /scratch/ramdisk/
mkdir W0_kraken2_out
mkdir W0_kraken2_kreport
parallel -j 1 'kraken2 --use-names --threads 12 --db /scratch/ramdisk/Kraken2.0.8_Bracken150mer_RefSeqCompleteV93/ --memory-mapping {} --output W0_kraken2_out/{/.}.kraken --report W0_kraken2_kreport/{/.}.kreport --confidence 0.1' ::: W0_decontaminated/*.fastq

parallel -j 1 'bracken -d /scratch/ramdisk/Kraken2.0.8_Bracken150mer_RefSeqCompleteV93/ -i {} -l S -o {.}.bracken -r 150' ::: W0_kraken2_kreport/*.kreport

mkdir W06_kraken2_out
mkdir W06_kraken2_kreport
parallel -j 1 'kraken2 --use-names --threads 12 --db /scratch/ramdisk/Kraken2.0.8_Bracken150mer_RefSeqCompleteV93/ --memory-mapping {} --output W06_kraken2_out/{/.}.kraken --report W06_kraken2_kreport/{/.}.kreport --confidence 0.1' ::: W06_decontaminated/*.fastq

parallel -j 1 'bracken -d /scratch/ramdisk/Kraken2.0.8_Bracken150mer_RefSeqCompleteV93/ -i {} -l S -o {.}.bracken -r 150' ::: W06_kraken2_kreport/*.kreport

mkdir W12_kraken2_out
mkdir W12_kraken2_kreport
parallel -j 1 'kraken2 --use-names --threads 4 --db /scratch/ramdisk/Kraken2.0.8_Bracken150mer_RefSeqCompleteV93/ --memory-mapping {} --output W12_kraken2_out/{/.}.kraken --report W12_kraken2_kreport/{/.}.kreport --confidence 0.1' ::: W12_decontaminated/*.fastq

parallel -j 1 'bracken -d /scratch/ramdisk/Kraken2.0.8_Bracken150mer_RefSeqCompleteV93/ -i {} -l S -o {.}.bracken -r 150' ::: W12_kraken2_kreport/*.kreport

W0 domain level:

W06 domain level:

W12 domain level:

Get fungal reads

Using KrakenTools - this searches based on the NCBI fungal taxon ID (4751) and then also takes all lower classifications.

git clone https://github.com/jenniferlu717/KrakenTools.git

cd W0_kraken2_out
for i in * ; do mv $i ${i%.*} ; done
cd ..
parallel -j 1 'python KrakenTools/extract_kraken_reads.py -k {} -s W0_decontaminated/{/.}.fastq -o W0_fungi/{/.}.fastq -t 4751 --include-children -r W0_kraken2_kreport/{/.}.kreport' ::: W0_kraken2_out/*.kraken

cd W06_kraken2_out
for i in * ; do mv $i ${i%.*} ; done
cd ..
parallel -j 1 'python KrakenTools/extract_kraken_reads.py -k {} -s W06_decontaminated/{/.}.fastq -o W06_fungi/{/.}.fastq -t 4751 --include-children -r W06_kraken2_kreport/{/.}.kreport' ::: W06_kraken2_out/*.kraken

#cd W12_kraken2_out
#for i in * ; do mv $i ${i%.*} ; done
#cd ..
parallel -j 1 'python KrakenTools/extract_kraken_reads.py -k {} -s W12_decontaminated/{/.}.fastq -o W12_fungi/{/.}.fastq -t 4751 --include-children -r W12_kraken2_kreport/{/.}.kreport' ::: W12_kraken2_out/*.kraken

HUMAnN3

Run using Uniref90 and Uniref50 databases:

parallel -j 1 'humann --input {} --output W0_fungi_humann/ --threads 12' ::: W0_fungi/*.fastq

parallel -j 1 'humann --input {} --output W06_fungi_humann/ --threads 12' ::: W06_fungi/*.fastq

parallel -j 1 'humann --input {} --output W12_fungi_humann/ --threads 8' ::: W12_fungi/*.fastq

Combine output files:

humann_join_tables -s --input W0_fungi_humann/ --file_name pathabundance --output W0_fungi_humann/humann_pathabundance.tsv
humann_join_tables -s --input W0_fungi_humann/ --file_name pathcoverage --output W0_fungi_humann/humann_pathcoverage.tsv
humann_join_tables -s --input W0_fungi_humann/ --file_name genefamilies --output W0_fungi_humann/humann_genefamilies.tsv

humann_join_tables -s --input W06_fungi_humann/ --file_name pathabundance --output W06_fungi_humann/humann_pathabundance.tsv
humann_join_tables -s --input W06_fungi_humann/ --file_name pathcoverage --output W06_fungi_humann/humann_pathcoverage.tsv
humann_join_tables -s --input W06_fungi_humann/ --file_name genefamilies --output W06_fungi_humann/humann_genefamilies.tsv

humann_join_tables -s --input W12_fungi_humann/ --file_name pathabundance --output W12_fungi_humann/humann_pathabundance.tsv
humann_join_tables -s --input W12_fungi_humann/ --file_name pathcoverage --output W12_fungi_humann/humann_pathcoverage.tsv
humann_join_tables -s --input W12_fungi_humann/ --file_name genefamilies --output W12_fungi_humann/humann_genefamilies.tsv

Renormalise output files:

humann_renorm_table --input W0_fungi_humann/humann_pathabundance.tsv --units relab --output W0_fungi_humann/humann_pathabundance_relab.tsv
humann_split_stratified_table --input W0_fungi_humann/humann_pathabundance_relab.tsv --output ./
humann_renorm_table --input W0_fungi_humann/humann_genefamilies.tsv --units relab --output W0_fungi_humann/humann_genefamilies_relab.tsv
humann_split_stratified_table --input W0_fungi_humann/humann_genefamilies_relab.tsv --output ./
humann_renorm_table --input W0_fungi_humann/humann_genefamilies.tsv --output W0_fungi_humann/humann_genefamilies_cpm.tsv --units cpm --update-snames

humann_renorm_table --input W06_fungi_humann/humann_pathabundance.tsv --units relab --output W06_fungi_humann/humann_pathabundance_relab.tsv
humann_split_stratified_table --input W06_fungi_humann/humann_pathabundance_relab.tsv --output ./
humann_renorm_table --input W06_fungi_humann/humann_genefamilies.tsv --units relab --output W06_fungi_humann/humann_genefamilies_relab.tsv
humann_split_stratified_table --input W06_fungi_humann/humann_genefamilies_relab.tsv --output ./
humann_renorm_table --input W06_fungi_humann/humann_genefamilies.tsv --output W06_fungi_humann/humann_genefamilies_cpm.tsv --units cpm --update-snames

humann_renorm_table --input W12_fungi_humann/humann_pathabundance.tsv --units relab --output W12_fungi_humann/humann_pathabundance_relab.tsv
humann_split_stratified_table --input W12_fungi_humann/humann_pathabundance_relab.tsv --output ./
humann_renorm_table --input W12_fungi_humann/humann_genefamilies.tsv --units relab --output W12_fungi_humann/humann_genefamilies_relab.tsv
humann_split_stratified_table --input W12_fungi_humann/humann_genefamilies_relab.tsv --output ./
humann_renorm_table --input W12_fungi_humann/humann_genefamilies.tsv --output W12_fungi_humann/humann_genefamilies_cpm.tsv --units cpm --update-snames

Regroup output to other functional categories:

humann_regroup_table --input W0_fungi_humann/humann_genefamilies_cpm.tsv --output W0_fungi_humann/humann_genefamilies_cpm_ko50.tsv --groups uniref50_ko
humann_regroup_table --input W0_fungi_humann/humann_genefamilies_cpm.tsv --output W0_fungi_humann/humann_genefamilies_cpm_ko90.tsv --groups uniref90_ko

humann_regroup_table --input W06_fungi_humann/humann_genefamilies_cpm.tsv --output W06_fungi_humann/humann_genefamilies_cpm_ko50.tsv --groups uniref50_ko
humann_regroup_table --input W06_fungi_humann/humann_genefamilies_cpm.tsv --output W06_fungi_humann/humann_genefamilies_cpm_ko90.tsv --groups uniref90_ko

humann_regroup_table --input W12_fungi_humann/humann_genefamilies_cpm.tsv --output W12_fungi_humann/humann_genefamilies_cpm_ko50.tsv --groups uniref50_ko
humann_regroup_table --input W12_fungi_humann/humann_genefamilies_cpm.tsv --output W12_fungi_humann/humann_genefamilies_cpm_ko90.tsv --groups uniref90_ko

Output files

Kneaddata read counts:
  • W0_kneaddata_read_counts.txt
  • W06_kneaddata_read_counts.txt
  • W12_kneaddata_read_counts.txt
Domain-level taxonomy (number of reads and relative abundance):
  • W0_kraken.csv
  • W06_kraken.csv
  • W12_kraken.csv
All domains taxonomy tables (number of reads):
  • W0_full_species.csv
  • W06_full_species.csv
  • W12_full_species.csv
Fungal taxonomy tables (number of reads):
  • W0_bracken_fungi.csv
  • W06_bracken_fungi.csv
  • W12_bracken_fungi.csv
Fungal taxonomy tables (relative abundance):
  • W0_bracken_fungi_relabun.csv
  • W06_bracken_fungi_relabun.csv
  • W12_bracken_fungi_relabun.csv
HUMAnN output:
  • Gene families (cpm)
    • W0/humann_genefamilies_cpm.tsv
    • W06/humann_genefamilies_cpm.tsv
    • W12/humann_genefamilies_cpm.tsv
  • KEGG orthologs (Uniref50 mapping)
    • W0/humann_genefamilies_cpm_ko50.tsv
    • W06/humann_genefamilies_cpm_ko50.tsv
    • W12/humann_genefamilies_cpm_ko50.tsv
  • KEGG orthologs (Uniref90 mapping)
    • W0/humann_genefamilies_cpm_ko90.tsv
    • W06/humann_genefamilies_cpm_ko90.tsv
    • W12/humann_genefamilies_cpm_ko90.tsv
  • Pathways
    • W0/humann_pathabundance_relab.tsv
    • W06/humann_pathabundance_relab.tsv
    • W12/humann_pathabundance_relab.tsv

Taxonomic analysis

NMDS plot (all taxa)

This uses Bray-Curtis distance calculated on the lowest taxonomic classification given by Kraken2 for all taxa present in the sample.

NMDS plot (fungi only)

This uses Bray-Curtis distance calculated on the lowest taxonomic classification given by Kraken2 for fungi only.

Stacked bar fungi (genus)

Here all fungi have been grouped to the genus level and this shows all genera that are above 2% abundance in at least one sample. Note that these colours are not unique, but are cycled and the genera are plotted in order, so as e.g. Acanthamoeba (where present) is plotted at 0 and Other is always plotted at 100.

Fungi week 0

Genus AFU001-W0 AFU002-W0 ASF001-W0 ASF002-W0 ASF003-W0 ASF004-W0 EDM001-W0 EDM002-W0 EDM003-W0 EDM004-W0 EDM005-W0 HAD001-W0 HAD003-W0 HAI002-W0 HAI003-W0 HAI004-W0 HAI006-W0 HAI008-W0 HAI009-W0 HFX001-W0 HFX002-W0 HFX003-W0 HFX004-W0 HFX005-W0 HFX006-W0 HFX007-W0 HFX008-W0 HFX009-W0 HFX010-W0 HFX011-W0 JER001-W0 JER002-W0 JER003-W0 JER004-W0 JER005-W0 JER006-W0 JER007-W0 JER008-W0 JER009-W0 JER012-W0 JER014-W0 JER015-W0 NAZ002-W0 POR001-W0 REH001-W0 REH002-W0 REH003-W0 SCH001-W0 SCH002-W0 SCH003-W0 SCH004-W0 SCH005-W0 SCH007-W0 SCH008-W0 SCH009-W0 TLV001-W0 TLV002-W0 TLV004-W0 TLV005-W0 TLV006-W0 TLV007-W0 TLV008-W0 TLV011-W0 TLV014-W0 TLV016-W0 TLV018-W0 TLV019-W0 TLV020-W0 TLV021-W0 TLV022-W0 TLV023-W0 TMC001-W0 TMC002-W0 TMC003-W0
Amorphotheca 0 0 0 0 0 0 0 0 0 0 0 0 1.1 0 0.3 0 0 0 0.3 1.2 0.3 0 0 0 0 0.6 2.6 0 0 0 0 0 0 2.8 0 0 0 0 0 0 0 0 0 0 0 0 1 0 10 0 0 0 0 0 0 0 0 0 0 2.2 0 0 0 0 0 0.2 0 0 0.1 0 0 0 0.2 0
Anthracocystis 0 0 0 0 0 0 0 0.2 0 0 0 0.2 0 0 0 0 0.3 0 0.4 0 0 0 0 0 0 0.2 0 0 0.5 1.2 0 0 0 0 0 0.6 0 0 0 0 0 0 0 2 0 0 0.2 0 0 0.6 0 0 0 0 0 1.6 0 0 0 0.5 0.5 0 0 0 0 0.2 0 0 0.2 0.8 0 0 0.1 0
Ascoidea 0 0 0 0 0 0 0 1.1 0 0 0 3.5 1.1 1.9 1.7 1.3 1.2 0 1.2 0 0 0 0 1.8 3.3 0.9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.2 0 1.5 0 7.5 0 0 0 0 0 0 0 0 0 0 4.5 0 0 0 0 0 0.4 0 0.1 2.5 0 0 0 0 0
Aspergillus 0 0 0 0 11.2 2.4 7.7 1.3 2.7 4.3 0 10.9 12 12.3 14.7 3.8 7.3 5.3 21.1 3.8 4.7 1.1 8.1 6.9 1.8 3.7 1.3 4.1 16.3 23.4 15.2 0 0 20.7 0 7.1 0 20.5 0 0.2 3.9 1.2 3.3 4.9 2.6 0.4 1.8 0 3.8 3.4 0 0 3.7 0 1.7 20.8 0 5.9 20.3 2.5 4.3 16.3 5.8 9.2 1.4 8.7 0 0.3 12.2 6.2 23.3 17 12.9 5.6
Aureobasidium 0 0 0 0 0 10.8 0 0 0 0 0.3 0 15.2 19.2 15.2 0 10.1 0 5.8 14.1 6.5 0 0 0 0 0 0 0 7.8 0 0 0 0 0 0 0 0 0 0 0 30.2 0 0 0 0 0 28.8 0 0 0 0 0 0 0 14.3 0 0 0 0 29.6 0 0 0 0 4.9 4.6 0 0 1.2 0 0 0 20.7 41.4
Babjeviella 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.5 0 2.5 0 2 0.3 0 0 0 0 0 0.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0.1 0 0 0.4 0 0 0 0.6 0
Baudoinia 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0 0 0 0 0 0.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.8 0 1 0 0 0 0 0.8 0 0 0 0.3 0 0 0 0 0 0 0 0 1.2 0 0 0 1.6 0 3.1 0 0 0 0.2 0 0 0.4 0 0 0 0 0
Bipolaris 1 0 0 0 0 0 0 0 0 0 0 0 0 1.5 0.2 0.4 0.3 0 0.4 0.3 0.1 0 0 0 0 0.1 0.7 0 0.4 0 0 0 0 0 0 0 0 0 2.6 0 14.4 0 0 0.6 0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0.5 0 0.9 0 1.2 0.4 0 0.2 0.1 0.7 0.9 0 0.3 4.6
Candida 0 0 0 0 0.2 13.1 1.4 0 0 0.7 0 0 0.2 0.3 0 0.1 0.5 0.1 0.1 2.1 0 0 0 0 0 2.8 0.4 0.2 0.1 0.5 0 0 3.1 1.4 0 0 0.4 0 0 2.3 0 0.1 0 0 21 0.4 0 0 0.4 0.2 0 0 0 0 9.5 0 0 0 0 0.2 1.6 0 0 0 0.3 0.2 0 0.4 1.2 3.2 0 1.6 0.2 0
Chaetomium 0 0 0 0 0 0 0.9 0 1.1 0 0 0.8 0.4 0.5 0.9 0.2 2.5 0 0.8 0.7 0.2 0 0 1.6 0 0 0 0 1.1 3 0 0 0 0 0 0 0 7.4 0 0 1.7 0 3.8 0 0 0.4 0 0 0.4 0.6 0 0 0 0 0 0 0 0 0.8 0.9 0 0 0 0 0.7 1.3 0 0 0.7 2.8 0 1.1 2.4 0.8
Cladophialophora 0.7 0 0 0 0 36.6 0.3 0 0.2 0 0 0.2 11.3 0.4 4.2 0.1 6.7 0 5.4 11.1 0 0 3.1 0 0 0.1 25.2 16.5 0 0.1 0 0 0 0 0 0 0 0 0 0 9.6 33.1 0.2 0 0 0 0 0 0.4 15.4 0 0 20.5 0 0 0 0 18 47.1 0.1 0 0 52.5 0 19.5 0.5 0 0.5 7 18.5 0 0.3 0.9 0
Clavispora 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0 0 0 0 9 0 0 0 0 0 0 0 0 0 0 3.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0 0 0 1.5 0 0 0 0 0
Colletotrichum 0 0 0 0 0 0.9 0.3 0 0.2 7.4 0 5.5 1 0 0.5 0.9 1.2 0.7 1 0.5 0 0 0 2.1 0.3 0.7 0.2 0.9 0.9 1 0 0 12.3 0 0 2.3 0 0 0 0 0.5 0.1 3 0 0 0 1.1 0 0 1.9 0 0.2 0 0.1 2.8 0 0 0 3.7 0.2 0 3.1 0 0 0.2 2.8 0 0 1.5 0.7 0 1.8 0.9 0.9
Coniosporium 1.7 0 0 0 0 0 0 0.3 0 0 0 0.6 0 0 0.5 0 0.2 0 0.9 0.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0 1.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0 0 0 0 0 0.1 2.9 0 0 0.4 0 0 0 0 0.4
Cryptococcus 0 0 0 0 0 0 0 0 0.2 0 0 0 0 0.1 0 0 0.3 0 0.1 0 0 0.4 0 0.1 0.3 0.1 0 0.2 0 0 0 0 3.1 0 0 0 0 0 0 0 0 0.1 0 0 0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0 0 0 0 0 0 0 0 0 0.1 1.3 0.3 0.1 0
Cyberlindnera 0 0 0 0 0 0 0 31.4 0 0 0 0 0 0 0 0 0 0 0 0.1 0.4 0 0 0.6 0 0.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0 0 0 2.9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0 0 0 0 0.3 0 0 0 7.6
Cyphellophora 0 3.3 0 0 0 0 0 0 0 0 0 0 0 11.5 3.1 0 7.9 0 6.1 0 1.2 0 15.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12.6 0 0 25.1 0 0 0 0 0 0 0 6.6 18.5 0 0 0 0
Debaryomyces 0 0 0 0 0 0 0 0 4.2 0 0 0 0 0.1 0.1 0 0 0 0.1 0.2 0 0 0 0 0 0.6 0 0.2 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0 0 6.6 0 0 0.1 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0 0 0 0 0 0.2 0 0 0.1 0 0 0 0 0
Eimeria 0 0 0 0 0 0 0.3 0.1 0.3 2.5 0 0.4 0.1 0.3 0.1 0 0.1 0 0.3 0.1 0.1 0 0 0 0 0.1 0 0 0 0.7 0 1 0 1.7 0 0 0 0 0 0 0.1 0 0.3 0 0 0 0 0 0 0 0 0 0 0 0.3 0 0 0.3 0.1 0 0 0.2 0 0 0 1.5 0 0 0.2 0.3 0.9 0.8 0 0.2
Eremothecium 0 0.1 0 0 0 0 0 0 0.3 0 0 1.2 0 2.5 0 0 0 0 0 0.2 0.3 0 0 0 0 0.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0 1.7 0 0 0.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0 0 0 0.1 0
Exophiala 4.3 0 0.4 0 0 0.3 0.3 0.1 1.1 0 0 0 1.9 0.4 16.6 60.8 1.5 0.1 25.1 0 0 2.1 0 0 0.3 57.8 0 0.2 0 0.8 0 1 0 0 0 2.5 0 0.5 2.6 0 0.3 0 0.2 0 0 0 0.2 0 0 0.1 0 0 0 0.1 0 2.1 0 0 0 0.1 0 1.8 0 0.6 0.3 0.5 0 0 19 0 0.4 6.5 8.8 0.1
Fonsecaea 0 0 0 0 0 2.5 0.3 0 6.4 34.4 0 0 2.4 0.1 1.8 0 0.2 0 3.2 7.6 0.3 11.7 0 6.1 0.6 0 0 0 5 0 0 0 0 0.7 0 0.9 0 0.5 0 0 0 0 0 0 0 0 0 0 61.8 0 0 0 39.3 0 0 0.5 0 0 0 0.1 0 13.2 0 0.6 4.4 1.7 0 0 1.7 0.1 0 0.3 2 0
Fonticula 0 0 0 0 0 0.1 0.3 0.1 0 0 0 0 0 0.4 0.1 0.1 0 0 0 0 0.1 0 0 0 0 0.1 0 0.1 0 0.4 0 0 0 0 0 0 0 0.5 3.9 0 0.3 0.1 0 0.6 0 0 0.1 0 0 0 0 0 0 0 0 0.2 0 0 0.5 0.1 0 0.9 0 0 0 0.7 0 0 0.2 0.1 3.6 0.3 0.2 0.5
Fusarium 0 0 0 0 0.5 0.1 0.2 0.2 0.2 0 0 0.5 0.5 0 0.5 0 0.2 1 0.3 0.1 0.1 0.5 0.5 0 0 0 0.1 0.4 0.1 0.4 0 0 4.6 0 0 0 0 0 0 0 1.7 0 0 0 0.1 0.4 1.6 0 0.4 0.3 0 0 0.3 0 0 0 0 0 0 0 0 1.3 0 0 0.4 0.5 0 0.1 0.7 2.6 0 0 0.1 0.2
Heterobasidion 0 0 0 0 0 0.1 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0 0 0 0 0 0 0 0 0.2 0 0 0 0 0 0 0 0 0 1 0 0 0.1 0 0 0 0 0 0 0 0 0.1 0 0 0 0 0.3 0.9 0 0 0 0.2 0 0.2 0 0 0.3 1 0 0 0 0 5.4 0 0.2 0.2
Hyaloscypha 0 0.1 0 0 0 0.2 4.1 0 0 0 0 9.5 2.5 0.8 0.2 0.2 0 0 0.4 0.3 0.3 0.2 0 1.2 2.7 0.5 1.5 0 0.4 0 1.1 0 0 0 0 0 0 0 0 0 0 0 0.3 0 0 0.1 0.1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0.5 0.7 0 2.8 0.6 0
Hyphopichia 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.2 0 0 0 1.7 0.8 1 0 6.5 4.5 0 0.4 0 0 0 4.1 0 0 0 0 0 8 0 0 0 0 0 0 12.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0 0 0 0.3 0 0 0 0 0
Kazachstania 0 0 0 0 0 0 0 0 0 0 0 0 0 3.5 0.4 0.1 0 0 0.3 0 0 0 0 0 0 0.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0 0 0 0 0 0.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0 0 0 0 0 0
Kluyveromyces 0 0.1 0 0 0 0 0 0 0 0.7 0 0 0 0.7 0 0.2 0 0 0 0.1 0.3 0 0 0 0 0 0 0 0 0 0 0 0 3.4 0 0 0 0 0 0 0 0.1 0 2.3 0 0 0.2 0 0 0.2 0 0 0 0 0 0.9 0 0 0.1 0 0 0 0 0 0.2 0 0 0 0.1 0.2 0 0.3 0.4 0
Kuraishia 0 0 0 0 0 0 0 0 0 0 0 0 0 1.2 0.3 0 0 0 0 0 0 0 0 0 0 0.3 0 0 0 0 0 0 0 0 0 0 0 7.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0 0 0 0.4 0 0 0 0 0
Kwoniella 0 0 0 0 0 0 8.2 1.6 0 0 0 0 2.9 0 2 3.5 0 0 3.2 2.3 1.3 0 0 0 7.3 0 0 0 6 0 0 0 0 0 0 14.4 0 0 0 0 0.7 0 0 0 0 0.3 41.8 0 0 2.4 0 0 0 0 0 7 0 0 5.4 0 0 0 0 0 1.6 1.4 0 0.1 2.4 6 0 14.2 5.7 2.2
Laccaria 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0 0 0.1 0.3 0 0 0 0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 2.7 0 0 0
Lobulomyces 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Malassezia 2 0.2 1.8 0 0.5 0.2 0.3 0 0.6 0 0.1 0 0.2 0.1 0 0.4 0.5 0.1 0 0.1 0.1 0.2 0 0 1.5 0.1 0 0 0 0.3 0.7 2 0 24.1 0 0.9 0.4 1.5 0 0 0.1 0.1 0.6 0.6 0 0.1 0.2 1.2 0.8 0 0.6 0.6 0 0.4 0.6 2.3 0.9 0.8 0.5 0.1 1.1 0.9 1.8 0 0.2 0.5 3.5 0 0.1 0.1 0 1.6 0.2 0.2
Melampsora 0 0 0 0 0 0 0.2 0.1 0 0 0 0.1 0 0.1 0 0 0.1 0 0 0.1 0.1 0 0 0 0 0.3 0 0.3 0 0.3 0 0 3.1 0 0 0 0 1.5 0 0 0 0 0.2 0 0 0.1 0.2 0 0 0.1 0 0 0 0.1 0 0 0 0 0 0 0 0 0 0 0.2 0 0 0 0.1 0.2 0 0 0.1 0.4
Metarhizium 0 0.1 0 0 4.9 0 0 0 1.8 0.7 0 2.3 1 0 0.9 0.4 2.6 0 1.5 0.3 0 0 0 0 10.5 0 4.6 0 0 0 0 0 4.6 0 0 0 0 11.1 0 0 0.3 0.3 0 5.5 0 0.1 0 0 0 0 0 0 0 0 0 3.3 0 3.1 3.2 0 0 0 0 0 0.2 0 0 0 1.8 0 0 2.9 0.3 0
Microsporum 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0 0 0 0 0 0 0 0 0 0 0 0 1.4 0 0 0.6 0 0 0 0 2.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0 0 0 0 0 0 0 0.5
Ogataea 0 0 0 0 0 0 0 0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Penicilliopsis 0 0 0 0 4.2 0 0 0 1.6 0 0 0 0 0 1.7 0.6 0 0 0.3 1.3 0 0 0 1.6 0 0 6.1 0 0.5 8 0 0 0 0 0 0 0 0 0 0 3.1 0.9 0 0 0.9 0.3 2.7 0 0 0 0 0 0 0 1.4 0 0 0 0 0 4.3 0 0 0 0.9 0.5 0 0 1.1 0 0 0 1.3 0
Penicillium 0 0 0 0 0 0 0.2 0.1 0 0 0 0.2 0.2 1.1 0.4 0.3 0.2 0 0.2 0.2 0.1 0 1.1 0.2 0 0.1 0 0.3 0 0.5 0 0 0 0 0 0 0 0.5 0 0.1 0.5 0.2 1.3 4 0.3 0.1 0.2 0 1.7 0.1 1.2 0 0 0 0 0 0 0.5 1.4 0.1 0 0 0 0 0.1 0.7 0 0.1 0.6 0 0.4 0 0.6 0
Phycomyces 0 0 0 0 0 0 0 1.1 0.3 5 0 25.8 0.9 0 0.9 0.7 0.9 0.1 1.3 4 0 0 0 2.9 0 4 0 0 0.5 0 0 0 0 0 0 0 0 0 0 0 1.6 0.1 0 0 0 0.1 0 0 0 1 0 0 0.2 0 0.1 2.3 0 0 0.8 0 0 0 0 0 0.2 0.6 0 0 1.6 5 0 18.9 4.7 0
Pichia 0 0 0 0 0 21.2 0 0 0.2 0 0 0 1.2 5.9 0.8 0 0 0 1 0 2 0 0 0 0 1.6 0 3 0 0.8 0 0 0 0 0 0 0 0 0 0 0.1 8.1 0 0.6 0 0 0 0 0 0 0 0 0 0 0 0.5 0 0 0 4.4 0 0 0 0 0.2 1 0 0.1 2 0.1 0 0 0.1 0
Pneumocystis 0 0 0 0 0 0 0.3 0 0 0 0 0.3 0 0 0 0.1 0 0 0 0.1 0.1 0 0 0 0.3 0.1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1.2 0 0 0 0 0 0 0 0 0 0 0.3 0 0 0 0 0.3 0 0 0 0 2.4 0 0 0 0 0 0 0 0.1 0
Rhizophagus 0.7 0.1 0 0 0 0.1 0 0.2 0 0 0 0.3 0.1 0 0.1 0.2 0.2 0 0.1 0.1 0.1 0 0 0 0.3 0.1 0.7 0.1 0.8 0.3 0.7 0 0 0.3 0 0 0 0 0 0 0 0 0.2 0.6 0.1 0.1 0.2 0 4 0.2 0 0 1 0.1 0 0.7 0 0 0.1 0 0 0 0 0 0.1 0.1 0 0 0.3 0.1 0 0.3 0.5 0.1
Rhodotorula 0 0.1 0 0 0 2.7 2.9 0.3 0 0 0 2.5 2 0 1.6 1.1 0 0 1.1 0.4 0.4 0 9.4 3.3 3.6 2.6 0 10.4 2.6 7.3 0 0 0 4.8 0 3.8 0 4.7 10.4 0 1.7 0.2 2.5 0 0 0 0 0 3.5 2.9 0 1.1 0 0 1.2 0 0 1.5 4 4.9 0 0 0 0 0.9 2.9 0 0 2.1 0 0 0.8 4 3.1
Saccharomyces 79.9 68.3 21.3 9.5 52.7 7.4 20.6 9 65.8 27 99.3 4.2 23.3 0 0.2 12.5 1.1 30.9 0 13.7 58.2 35.1 0 0 17.8 0 35.1 45.4 9.9 4.2 79.6 47.2 60 16.6 0 0 0 28.7 0 96.9 7.9 46 47.2 19.9 61.4 93 0 0 0 31.9 1.2 65 22.1 71.1 58.7 4.9 21 39.2 6.3 12.7 44 31.5 15.7 88.8 38.3 10.5 57 95 0 2.1 35.9 0.2 3.9 18.9
Saitoella 0 0 0 0 0 0 0 0 0.6 8.5 0 0 0 0 0.4 0 0 0 0.6 0 0 0 10.8 0 0 0 0 0 0 0 0 1.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9 0 0 0 0.5 0
Salpingoeca 0 0 0 0 0 0 0 0.1 0.2 0 0 0 0.1 0.3 0.3 0 0 0 0.4 0.1 0.1 0 0 0 0.4 0.3 0 0 0 0 0 0 0 0 0 1.7 0 0 0 0 0 0 0.2 0 0 0 0 0 0 0.1 0 0 0 0 0.1 0.5 0 0 0 0.8 0 0 0 0 0 0.1 0 0 0.1 0.2 4.5 0 0 0
Scheffersomyces 0 0 0 0 0 0 0 0 0 0 0 0 0 6.7 3.6 0 0 0 0 6.9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19.9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.4 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0 1.6 9.6 0 0 0 13 0
Spathaspora 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.6 0 0 4.3 8.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0 0 0.2 0 0 0 3.9 0 0
Sphaeroforma 0 0 0 0 0 0.1 0 0 0 0 0 0 0 0 0 0.1 0 0.1 0 0 0 0 0 0 0 0.1 0 0 0 0 0 0 4.6 0 0 0 0 0 0 0 0 0 0.6 1.2 0 0 0 0 0 0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0.1 0 0 0.1 0 0 0 0.3 0
Symmetrospora 0 0 0 0 9.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Talaromyces 0 0 0 0 0 0.1 0 0 1.7 0 0 0.1 0 0.3 0 1.1 1.1 0 0.1 0 0.1 0 0 0 0 0.6 0 0 0.2 0 0.7 0 0 0 0 0 0 0 0 0 0 0.5 0 0 1.9 0.4 0 0 0 0 0 0 5.8 0 0 0 0 0 0 0.1 0 12.6 0 0 0.2 0.3 0 0 0.2 0 0 0 0.1 0
Tetrapisispora 0 0 0 0 0 0 0 2.6 0 0 0 1 1 0 0.5 0 1.1 0 0.3 3.5 0.5 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0 0 0 0 0 0 0 0 0.8 0 0 0 0 0 4.5 0 0 0 0.1 0.2 0 0.1 0.1 6.5 0 0 0 0
Tilletiaria 0 0 0 0 0 0 0 0 0 0 0 6.6 0 0 0.4 0 0 0 1.7 0 0 0 0 0 0 2.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7.2 0 0 0 0 0 0 0 0 0 0 0 0 7.1 0 0 0 0 0.6 0.4 0 0.1 1.4 0 0 13.3 1.7 0
Tilletiopsis 0 0 0 0 0 0 0.3 0.1 0 0 0 0 0.1 0 0.1 0 0.3 0 0.1 0 0 0 0 0.1 0 0.1 0 0.2 0.3 0 0 0 3.1 0.7 0 0.2 0 0 0 0 0.1 0 0 0.6 0 0 0.1 0 0 0.2 0 0 0 0 0.8 0.5 0 0 0.1 0.2 0 0 0 0 0 0.8 0 0 0 0.1 0 0 0.2 0.3
Toxoplasma 8.6 13.4 73.4 0.2 8.2 0 0 1 1.7 2.5 0.2 0.1 2.1 0.1 0.1 0.9 0.1 0 0 9.6 1.1 45.8 42.9 1 33.3 0.2 15.2 0 0.2 2 0.7 45.2 0 0 91.9 0 99.2 0.7 2.6 0.3 0.1 2.1 0.4 32.9 0.1 0.3 0.8 98.8 0 0 96 32.5 0.8 27.6 1 5.8 78.2 12.1 1 0 11.7 5.3 17.9 0 0.2 0.6 38.6 0 0.2 0.5 0.4 0 0.2 5.6
Tremella 0 12.9 0 0 0 0 0 39.9 0 0 0 0 0 0 12 0 34.8 53.5 0 0 0 0 0 33.6 0 0 0 0 39.9 0 0 0 0 0 0 0 0 0 0 0 10.9 0 0 0 0 0 0 0 0 28.9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9.4 26.4 0 0 0 0 0 0 0 0
Trichoderma 0 0 0 0 0 0 44.8 0.3 1.3 0.7 0 7.1 1.6 15.4 2.5 5 0.4 7.3 2.5 0.4 4.5 0 0 2 0 5.7 1.5 6.4 0 2.2 0 0 0 0 6.5 0 0 0.7 77.9 0 1 3.3 6.1 7.2 2.5 0.1 0 0 0.8 1.1 0.5 0 0.1 0 0.3 1.4 0 0 0.1 2 0 0 0 0 0.5 1.5 0 0.2 4.4 0.4 5.4 2.8 0.1 0.4
Trichosporon 0 0 0 0 0 0 0 0.5 0 0 0 2.4 0 0 0 0.9 0.5 0 0.4 0 0.1 0.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.7 0 0 0.3 0 0 0 0 0 1.9 0 0 0.2 0 0.4 0 0 0.1 0 0 0.8 0 4 0 0 0 0 0 0 0 0 0.9 0 1.3 0 0.6 0
Tsuchiyaea 0 0 0 0 0 0 0 0 1.7 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.7 0 0 0 0 0 0 0 0 0 2.7 0 0 0 0 0 0.7 0 0 0.2 5 0 0 0 0
Uncinocarpus 0 0 0 0 0 0 0 1.4 2.3 0 0 0 0 0 0.2 0 0 0 0.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.5 0 1.2 0 0 0.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0 0 0.2 0 0 0 0 0
Wallemia 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5.9 0 0 0 0.8 0 0 0 0 0 0 0 0 17.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 31.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Wickerhamomyces 0 0 0 0 0 0 0 0 0.1 0 0 0 2.8 0 0.9 0.7 0 0 2.1 2.7 0 0.4 0 0 0 0.1 0.2 1.6 0 0 0 0 0 0 0 5.8 0 0 0 0 0.2 0.1 7.8 0 0 0.5 1.3 0 0 0 0 0 0 0 0 0.5 0 0 0 0.1 0 0 0 0 0.1 0.5 0 0 1.3 0 0 0 1.5 0
Xylona 0 0 0 0 0 0 0 0 0 0 0 0 4.6 0 0.6 0 0 0 1.5 7.2 2.9 0 0 21.3 0 3.2 0 0 0 0 0 0 0 0 0 17.8 0 0 0 0 1.6 0 0 0 0 0.7 0 0 0 0 0 0 0 0 0 0 0 0 0 8.8 0 0 0 0 3.3 0 0 0 1.9 9.7 0 0 0 0
Yamadazyma 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 0 0 0 0 1.2 0 2.2 0 0 0 0 0 5.9 0 0 0 0 0 0 0 0 0 0 0 0.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
[Candida] 0 0 0 89.5 5.1 0 0 0 0 0 0 6.9 0 0 0 0 0.1 0 0.1 0 0.1 0 0 0 0.3 0 0 0 0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3.5 0 0.6 0.5 0 0.5 0 0 0 0.4 0.9 0 0 0.1 0 0 0 0.2 0.4 0 0.1 0

Fungi week 6

Genus AFU001-W06 AFU002-W06 ASF001-W06 ASF004-W06 EDM001-W06 EDM002-W06 EDM003-W06 EDM004-W06 EDM005-W06 HAI004-W06 HAI006-W06 HAI008-W06 HAI009-W06 HFX001-W06 HFX002-W06 HFX003-W06 HFX004-W06 HFX005-W06 HFX006-W06 HFX007-W06 HFX008-W06 HFX009-W06 HFX010-W06 HFX011-W06 JER002-W06 JER003-W06 JER004-W06 JER006-W06 JER007-W06 JER008-W06 JER009-W06 JER011-W06 JER012-W06 NAZ002-W06 POR001-W06 REH001-W06 REH002-W06 REH003-W06 SCH001-W06 SCH004-W06 SCH006-W06 SCH007-W06 SCH008-W06 TLV001-W06 TLV004-W06 TLV005-W06 TLV006-W06 TLV007-W06 TLV008-W06 TLV011-W06 TLV014-W06 TLV016-W06 TLV018-W06 TLV019-W06 TLV020-W06 TLV021-W06 TLV022-W06 TLV023-W06 TMC001-W06 TMC002-W06 TMC003-W06
Acanthamoeba 0.6 0 0 0.5 0 0.2 0.4 0 1.4 0.3 0.2 0.2 0.1 0.3 1.1 0 0.2 0 0.2 0.8 2.1 0.8 0.2 0.2 0.4 0.1 0.1 0.1 0 0.4 0 0.1 0 5.9 0 8 0 0.3 0.3 0.7 0 0.3 0 0 0.2 0 0 0 0.1 0 0 0.3 0.4 0 0 0.1 0.1 0 0 0.4 1.3
Acaromyces 0 0 0 0 0 0 0 0 0 0 0.1 0 0.1 0.1 0 0 0 0 0 0 0 0.2 0.3 0.1 0 0 0.3 0.1 0 0 0 0 0 0 0.2 0 0 0 0 0 0 0 0.1 0 0 0 0 0 0 0 0 0.1 0.1 0 0 0.2 0 0 0 0 2.1
Amorphotheca 0 0 0 0 0 0 0 0 1.3 0 0 0 0.6 0.2 0 0 0 0 0 0 0 0.8 0 0 0 0 0 0 0 0.6 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.3 0.2 0 0.4 0 0.3 0 0 0 0 1.1
Ascoidea 0 0.1 12.2 0 7.3 0 0 0 3.3 0 0.9 3 2 0.5 0 0 0 4.7 0 2.3 0 0 1 2.1 0 0 0 0 0 3.2 0 0.8 0 0 0 0 2.1 0 0 0 3 0 0 0 0 0 4.4 0 0 0 0 0 0 0 0 0 0.4 0 0 0 1.5
Aspergillus 5.7 5.2 7.5 19.8 4.1 17 12.3 3.9 14.8 8.4 8.3 23.3 20.6 2.9 15.1 4 4.8 12 6.1 3.9 5.3 14.3 24.2 13 0.6 9.1 3.9 8.4 2.8 24.9 4.1 3.8 6 0 14.3 0 0.4 8.5 1.4 6.3 15.8 9.4 5.1 0 19.1 11.4 15.4 4.3 1.5 2.2 3.3 6.1 10.9 4.8 12.1 5.3 8.8 3 9.1 6.2 2.3
Aureobasidium 41.4 13.2 0 0 41.2 0 0 0 0 0 0 0 11.3 4.9 0 0 0 14.7 0 0 0 6.7 13.4 0 0 0 0 0 0 17.1 0 8.5 17.9 0 0 0 27 0 0 0 21.1 0 5.6 0 7.1 0 0 0 7.6 0 0 12.2 0 12.2 0 26.3 22.7 0 0 7.2 14.2
Babjeviella 0 0.5 0 0 6.8 0 0 0 5.8 0 1 0 0 0 0 0 0 1.1 0 3.1 0 0 0 0.3 0 0 0 0 0 1.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.6 0 0 0 0.7 2.8 0 0 2 0 0 0 0 0
Batrachochytrium 0 0.1 0 0 0 0 0 3.3 0 0 0 0 0 0 0.5 0 0 0 0 0.6 0 0.3 0 0.4 0 0 0.4 0 0 0 0 0 0 0 0 0 0 0.4 0 0 0 0 0.1 0 0 0 0 0 0 0 0 0.2 0 0 0 0 0 0 0 0.1 0
Bipolaris 0 0.1 0 2.7 0 0.9 0.5 0 0 0 0.1 2.2 0.1 0.4 0.7 0.8 0 0.1 0.3 0.7 1.1 1.5 0 0.4 0 0.2 0 0.1 0 3.4 0 1 0.2 0 0 0 0 0.2 0 0.2 0 0 0.2 0 0.1 0 0 0 0 0 0.9 4.2 2.8 0.9 0.3 0.4 0.3 0 6 0.4 3.8
Candida 0.3 0.6 0 6.4 0.2 0.4 0 0 0.4 1.4 2.4 0 0.3 0.5 2 0 0 0.1 0 0.1 0.9 2.3 0.1 0.1 0 0 0.2 0 0.4 0.1 0 0.4 0 0 0 8 2.7 2.9 0 0 0 0 0 0.8 0 0 0.3 0.1 0.1 7.6 0 0.4 0 0.2 12.5 0.1 1.6 0 0 1.1 0
Capronia 0 0.2 0 0 0 0 0.7 0 0 0.6 0 0 0 0 2.8 0 0 0.3 0 0.1 3.4 0.4 0.4 0.3 0 0 1 0 0 0 0 0 0.2 0 3.8 0 0 0.8 0 0 0 0 0 0 0.2 0 0 0 0.3 0 0 0.1 0 0 0 0.1 0.1 0 0 0.2 0
Chaetomium 0 0.2 0 0 0 0 0 0 1.8 3.5 0 1.1 1.7 0.7 0 0 0.5 0.2 0 1.3 9.6 1.5 0.5 0.6 2 2.5 0.9 0.9 1.7 0 6.1 0.5 3.3 0 0 0 0 0 0 0 1.3 0.9 0.3 0 0 0 3.5 0 0.5 0 4.2 0.9 0 0.6 0.3 0.5 0 0 0 1.1 8.4
Cladophialophora 32 1.6 0 0 0.2 6.5 0 0 24.4 0 6 17.3 1.8 0 0 0 0.2 0.3 13.4 16.1 0 0.1 6.2 0.1 0.2 0 0 0.1 53.7 0.1 47 10.6 3.2 0 0 0 0.1 38.5 0 39 0 0 47 0 14.8 0 0.4 0 0.3 0 0 24.4 4.2 2.8 2.3 0.1 4.6 0 0 2 0
Clavispora 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0 0 0 0 7.2 0 1.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.1 0 0 0 0 0 0 0 19.7 0 0 0 0 0 0 0 0 0 0
Coccocarpia 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Colletotrichum 0 0.6 0 7.3 3.8 0 2.5 0 2.3 0 0.7 0.9 1.6 0.8 6.4 0 0 1.2 1.3 2.1 0 1.2 0.7 0.5 0 0.4 1.6 0.8 0.6 0.7 0 0 1.2 0 8.1 0 0 0 0 0 1 0 0.4 0 2.5 0.6 2.7 0 0 0 0 0.7 0.9 0.5 0.2 1.2 2.1 0 1.2 2.5 1.9
Coniosporium 0 0 0 0 0 0 0 0 0 0 0.2 0 0.1 0.4 0 0 0 0 1.3 2 3.7 0 1 0.4 0 0 0 0 0 0 0 0 0.2 0 0 0 0 0 0 0 0 2 0.4 0 0.4 0 0 0 0 0 0 0 0 0.9 0 0 0.4 0 0 0 3.1
Cryptococcus 0 0 0 0.3 0 0 0.6 0 0.3 0 0 0 0 0 0 0 0 0.1 0 0.1 0 0.1 0 0.1 0 0 0.2 0.1 0.1 0 0 0 0.2 0 0 0 0 0.1 0 0 0 0 0.2 0 0 0.1 0 0 0 0 0 0 0 0 0.1 0 0 3 0 0.1 0
Cyphellophora 0 0 0 0 0 0 28.7 0 0 0 0 0 2.3 6.6 0 0 0 0 5 3 0 4.3 0 6.6 0 0 0 0 0 7.4 0 0 0 0 0 0 0 9.1 0 13.7 0 0 0 0 0 0 0 0 0 0 0 0 0 11.8 4.4 5.3 0 0 0 2.8 0
Debaryomyces 0 0.3 0 0 0.2 0 0 0 0.4 0 0 0.1 0 0.7 0.3 0 0 0 0 0.1 6.8 1.5 1.9 2.3 0 0 0 0.1 0 0 0 0.1 0 0 0 0 0 0 0 0 2.3 0 0 0 0 0 3.5 0 0 0 8.9 0.7 0.1 0 0.6 0 0 0 0 0 0
Diplodia 0 0.1 0 0.3 0.5 0 0 0 0 0 0 0 0.3 0 0.3 0 0.2 0 0 0.1 0.5 0.1 0.1 0.1 0.2 0.2 0 0.1 0 0 0 0 0.1 0 0 0 0 0 0 0.2 0 0 0.1 0 0.1 0.2 0.4 0.3 0.1 0 0 0 0 0.1 0 0.2 0.1 6.1 0 0.1 0
Eimeria 0.2 0.2 2.4 0 0.7 0.5 2.8 2 1.2 2.3 0.3 1.3 0.5 0.5 3.6 1.6 0 0.1 0 0.9 4.6 0.8 0.6 0.2 0 0 1.7 0.3 0 1.7 2.8 0.1 1.4 0 1.6 0 0 0.3 0 0.2 0.3 1.7 0.4 0 0.8 0.8 1.2 0 0.3 0 0.9 0.7 0.2 0.2 0.4 1 0.5 0 1.4 0.3 0.5
Emiliania 0.4 0.8 0 1.6 0.9 0 1.1 0 1.8 2 0.6 1.4 0.3 0.7 1 0 0.2 0.2 0 0.9 0 1.2 1 0.3 0.4 0.3 1 0.8 0.4 1.1 0.7 0 0.8 0 0 0 0 0.3 0 0 0.3 0 0.7 0 2.4 0.2 0 0.3 0.6 0 5.6 1.1 1.1 0.6 0 0.3 1.1 0 0 0.2 1.3
Eremothecium 0.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8.4 0 2 0 0 0 0.1 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0 0 0 0 0 0 0 0 0.8 0 0 0 0 2.3 0 0 1 0 0 0 0 0 0 0
Exophiala 3.1 17.3 0 1.4 0.1 13.5 0.6 0 0.4 0.3 14.7 0.7 17.4 45.9 0.5 0 25.4 0.6 0.2 0.1 0 0.5 23.5 9.3 50.3 0.4 0 27.6 0 0 0 27.2 4.6 0 0 0 56.8 0 65.1 0.2 0.7 1.1 4.5 0 4 0 0.2 0 13.7 0 0.9 0.3 0.5 36.8 3.7 0.8 0.3 0 0.1 9.3 0
Fonsecaea 0.2 2 0 30.5 0.2 0.5 7 0 0.3 0 0.2 0 4.2 0.1 0.8 0 4.8 6.1 0.2 0.4 0 0.3 0.1 0.1 0 0 22.9 7.5 0 6.7 0 0.3 0.9 0 0 0 0 0.2 12.6 0 0.2 0 0 0 0 0 29.6 0 0 0 1.9 5.3 4.7 0 0 1.5 1.6 0 0 0.4 4.8
Fonticula 0 0.1 2 0.4 0.2 0 0.2 2.6 0.3 0 0.2 0.2 0.1 0 0 0 0 0 0 0.3 0 0.4 0 0 0.2 0.2 0.2 0 0 0.1 0 0 0 0 0 0 0 0.2 0 0.2 1 2.3 0 0 0.3 0 0.2 0 0 0 0 0.6 0.2 0.6 0 0.1 0.1 0 0 0.5 0
Fusarium 0 0.7 0 1.5 0 3.9 0 3.3 0 0 0.2 0.5 0.3 0.1 1.8 0 0 1.4 0 1.4 2.5 1.2 0 1 0 0 0.2 0 0.1 1.2 1.3 0 0.1 0 2 0 0 0.2 0 0 0.5 0 0.5 0 0 0.1 0.8 0 0 0 0 0.4 0.1 1.6 0.3 0.5 0 0 1.1 0.6 1.6
Grosmannia 0 0.3 0.3 0 0 0.1 0 0 0.3 0 0 0 0.1 0 0 0 0 0.1 0.1 0.1 0 0 0 0 0 0 0.2 0 0 0.1 0 0.1 0 5.9 0.4 0 0 0 0 0 0 0 0.1 0 0 0.1 0.6 0 0.1 0 0 0.1 0 0 0 0.1 0 0 0 0.1 0
Guillardia 0 0 0 0 0 0 0.9 0 0 0.5 0.1 1.3 0.2 0 0.5 0 0.2 0.2 0.4 0.3 0 0.3 0.1 0.3 0.5 0.3 0 0 0 0.1 0 0 0.2 0 0 0 0.2 0 0.3 0.1 0.5 0 0.1 0 0.3 0.2 0.4 0 0 0 0 0.3 0.2 0 0 0.3 0 9.1 0 0.3 0.8
Halolamina 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0 0.1 0 0 0 0 0 0 0 0 0 0.1 0 11.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0 0 0 0 0
Halomicrobium 0 0 0 0 0 0 0.2 0 0 0 0 0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11.8 0 0 0 0 0 0.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Halorubrum 0 0 0 0 0 0 0 0 0.8 0 0.2 0 0 0.1 0 0 0 0 0 0.2 0 0 0 0 0 0 0 0 0 0.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.4 0 0 0 0.1 0.9 2.8 0.1 0 0 0 0 0.1 0 0 0.1 0.2
Hyaloscypha 0.4 0.1 0 0 0 0.3 1 0 0 0 0.7 0.8 0.6 0.1 0.7 1.6 0.2 11.1 6.9 0.2 0 1.5 0.3 0.7 0 0 0 0 0.3 0 0 0.2 0.4 0 0 0 0 0 0 1.2 0 0 0.1 0 0.4 0 0.6 0 0 0 0 0 0.8 0.1 0.5 0.3 0.2 0 1.2 1.3 1.9
Hyphopichia 0 0 0 0 0 0 0 0 0 0 0 0 0.8 0 1.5 0 0 1.2 0 0 0 3.6 0 0.6 0 0 1.8 0.8 1.2 0 0 0 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 3.2 0 0 0 0 0 0 2.3 0 0 0 0 0.6 0
Jaminaea 0 0 0 0 0 0 0 0 0 0 0 0.1 0.1 0.2 0.3 0.8 0 0 0 0.1 0 0.1 0 0 0 0.2 0 0 0 0 0 0 0.2 0 0.1 4 0 0 0 0 0 0 0.2 0 0.1 0 0 0.1 0 0 0 0 0 0.1 0 0 0.1 6.1 0 0.1 0
Kazachstania 0 0.3 0 0 1.3 0 0 0 0 0 0.4 0 1.1 0.7 0 0 0 2.9 0 0.8 0 1.2 0 1 2.9 0 0 3.2 3.7 0 0 0 0.9 0 0 0 0 0 0 0 0 0 2.4 0 0 0 2.9 0 0 0 0 0.1 0.3 0 1.1 0 0 0 0 0.9 0
Kluyveromyces 0 0.1 0 0 0 0.5 0 2.6 0 0 0.2 0 0 0 1.8 0 0 0 0 0.1 0 0 0 0 0 0 0 0.3 0 0 0 0 0.2 0 0 0 0.2 0 0 0.6 0 0 0 0 0 0.1 0 0 0 0 0 0 0 0 0 0.1 0.1 0 0.3 0.1 0.8
Kwoniella 9.2 2 27.6 0 13.3 1.3 8.7 0 0 0 0 3.6 4.5 5.4 0 0 0 3 0 0 0 7.8 1.3 6 4.1 10.7 0 1.6 11.9 2.8 0 12.6 3.8 0 22.2 0 0 0 6 0 0 0 0 0 0 12.2 15.2 0 1.1 66.1 0 0 5.3 0 1.7 1.2 0.8 0 50.6 17.1 13.2
Lodderomyces 0 0.1 0 0 0 0 0 0 0 0 0 0.4 0 0.1 0 1.6 0.4 0.6 0 0.4 0 0.5 0 0.2 0 0 0 0.4 0.7 0.9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0 0 0 0 2.8 0 0 0 0 0 0 0 0 0 0
Malassezia 0.2 0 0 0.8 0.5 0.1 1.5 1.3 0.3 1.2 0.3 0.2 0.1 0.1 0 0 0 0.2 0.3 0.1 0 0.4 0 0.1 0.5 0 0.2 0 1.3 0.2 0.7 0.2 0.2 0 0 16 0.2 1 0.8 0 0.3 1.1 0.2 2.5 0.3 0.2 1.3 0.4 0 2.7 2.3 0.3 0.2 0.1 0 0.2 0.2 6.1 0.4 0.3 0
Metarhizium 0 8.6 0 0 1.4 0 0 0 0 0 0 0 0.7 0.6 0 0 0.6 0 0 2.4 11.9 0 0 0.1 0 0 0.4 2.1 0 0.4 9.4 1.2 1 0 0 0 0 1.9 0 4.2 2.9 1.7 0 0 0 0.3 0 0.3 0 0 2.3 0 0.3 0 0.2 1.9 0.2 0 0 0 0
Methanotorris 0 0 0.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0.2 0 0 0 0 0 0 0 0 0 0.1 11.8 0 0 0 0 0 0 0 0 0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Meyerozyma 0 0 0 0 0 0.1 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0 0 0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.3 0 0 0 0.6 0 0.1 0 0 0 0
Ogataea 0 0.3 0 0 0 0 0 0 0 0 0 0 0.4 0 0 0 0 0 0 3.9 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.7 0 0 0 0 0 0 0
Paracoccidioides 0 0 0 0 0 0 0.4 0 0 0 0.1 0 0 0.3 0 0 0 0 0 0 0.9 0 0 0 0 0.3 0 0 0 0 0 0 0.2 0 0 8 0 0 0 0 0 0 0 0 0 0 0.4 0.1 0.1 0 0 0.1 0.1 0 0 0.1 0 0 0 0 0
Penicilliopsis 0 0.1 14.6 0 0 0 1.5 0 1.4 0 0.8 2.2 0.5 0.2 0 0 0 0 0 1.2 0 1.2 1.4 1.4 2.4 0 5.8 0 0 4.3 0 0 3 0 0 0 0 5.1 0 0 0 20.2 3.1 0 0.5 1.5 0 0 0 0 0 0 0.5 0 0.4 1.3 0 0 14 0.3 0
Penicillium 0 0 2 4.1 0 0.3 1.6 0 0.5 0 1.6 0.4 0.5 0 0 0 0 1.3 1 0.1 0 0 0.2 0 0 1.4 0 0.5 0.4 0.1 0 0.8 0.1 0 0 0 0.7 0.2 0 0 0 1.1 0.7 0 0 0.2 0.2 0.4 0 0 1.9 0.7 0.2 0.3 1.5 1.3 0.6 6.1 0 0.5 0.7
Pestalotiopsis 0 0 0 0 0 0.2 0 0 0 0 0.1 0 0.1 0 0 0 0 0.1 0.4 0.2 0 0.1 0 0 0.1 0.2 0 0.1 0 0 0 0 0 0 0 12 0 0 0 0.2 0.2 0.3 0.5 0 0.1 0 0 0 0 0 0.9 0 0.1 0.3 0 0.1 0.2 3 0 0.1 0
Phycomyces 0 3.9 0 0 0 1.1 0 0 0 0 0 16.6 0.9 5.7 24.8 0 0 7.3 0 1.5 0 3.9 3.8 6.3 0 1.8 11.5 0 0 0 0 7.7 0.7 0 0 0 0 6.6 0 0 0 6.3 0.5 0 1.2 0 0 4.7 0.5 3.1 0 0 0 0 1 1.8 1.6 0 0 3.4 7.6
Phytophthora 0.2 0.3 0 0 0.4 0.2 0.6 0 0.5 1.2 0.2 0 0.8 1 0 1.6 0 0.1 0.5 0.5 0 0.3 0.2 0.1 0.2 0.4 0.1 0.1 0 0.1 0.7 0 0.3 0 0.2 20 0 0.5 0 0 0.3 0.3 0.3 0 0.4 0.1 0.1 0 0.4 0 0.9 0.7 0.3 0.1 0 0.4 0.3 0 0.1 0.4 0.5
Pichia 0 0.6 0.7 0 0 0 0 0 5.2 0.3 0 0.2 1.6 0 0 0 0 0 0 2 0 0.6 0 0 0 0 0.2 0 0 0 0.7 4.7 1.8 0 0.2 0 0 0 0 0 1.8 0 0 0 3.8 0.1 0.2 0 0 0 0 0 3.9 0 1.5 0 0.1 0 0 1.2 0.3
Plasmodium 0 0.2 0 0 0 0.9 0.2 0 0.8 0 0 3.3 0.6 0.1 0.7 0.8 0.6 0 0 1.4 0.5 0 0 0.1 0 0.2 1.3 0.5 1 0 0.4 0.7 0.5 0 1.3 0 0 0 0 0 0 0 0.4 1.2 1.6 0.1 0.8 0 0 2.2 0 0.5 1.3 0.3 2 0.1 1 0 0 1.1 0
Pneumocystis 0 0 0 0 0 0 0 0.7 0 0 0 0 0 0.1 0.5 0 0 0 0.4 0 0 0.1 0.2 0.2 0 0 0 0 0.2 0 0.2 0 0.2 0 0 0 0 0 0 0 0 0 0 0 0.1 0 0 0 0 0 0 0.3 0.1 0.3 0 0.1 0.2 3 0 0 0
Pseudopithomyces 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Rhinocladiella 0 0 0 0 0 0 0 0 0 0 0.2 0 0 0 0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0.3 0 0.3 0 0 0 0 0 0 0 0 0 0 0 0 1.1 0 0 0 0 0 0 0 2.3 0 0.2 0.1 0 0 0.2 0 0 0.3 0.2
Rhizophagus 0 0.2 0.3 0.1 0.5 0.3 0.4 0 0.5 2.1 0.1 0.5 0.3 0.4 1 0 0.2 0.1 0.3 0.2 0 0.1 0.2 0.6 0.2 0 0.2 0.1 0.5 0 0 0.2 0.2 0 0 8 0.1 0.3 0 0 0 3.4 0.4 0 0 0.1 0.4 0.1 0.3 0 0.9 0.2 0.6 0.2 0.1 0.2 0.1 3 0.1 0.1 0.3
Rhodotorula 0 0.7 16.3 6.4 4.5 0.8 1.8 0 0 4.6 0.4 0 1.4 1.5 0 0 0.8 0 1.8 2.6 0 2.8 5.4 0.2 0 0 0 2.4 0 1.6 0 0 0.4 23.5 0 0 0 0 0 0 9.2 0 0.3 0 4.8 0 0 0 1.1 0 0 5.7 0.2 0 0 0.1 0 0 0 2 4.3
Saccharomyces 0 1.7 0 0 0 2.7 0 48.4 0 0 40.6 0.1 0 0 9.5 0 4.7 0 4.7 0 25.1 1.6 0.3 0.5 30.5 41.4 20 4.5 3.6 2.1 0 0 1.6 0 0 0 0 0 0 0 0 0 0.5 56.4 1.1 61.2 0.2 0 67.1 4.5 0 0 0 0 0 1 1.4 0 0.1 0.5 0
Saitoella 0 0 0 0 0 0 0 15.7 0 0 0 0 0.7 0.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0.8 0 0 0 0 0 0 0 2.4 0 0 0 0.7 0 0 0 0
Scheffersomyces 0 14.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 43.7 0 0 5.5 0 5.6 0 0 0 0 0 0 0 0 5.7 0 28.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4.1 0 4 24.5 11.2 8.4 0 0 2.7 0
Schizophyllum 0 0 0 0.3 0.5 0.2 0 0 0 0 0.1 0.2 0.2 0.1 0 0 0 0 0.1 0.1 0 0.2 0.1 0 0 0 0 0.1 0 0.1 0.4 0.1 0 0 0.1 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0 0 0.2 0 0 0.1 0.9
Serpula 0 0 0 0 0.1 0 0 2.6 0 0 0.2 0 0 0 0 0 0 0.1 0 0 0 0.1 0 0 0 0 0.2 0 0 0.1 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0 0 0 0
Spathaspora 0 0 0 0 0 2.4 0 0 0 7.3 1.2 0 0 0.5 0 0 0 0 0 0 0 0.5 0 0 0 0 0 0 0 0 0 0 1.8 0 0 0 0 0 0 0 0 0 0 24.1 0 0 0 0 0 0 0 2.8 0 0.5 8 0 0 0 0 1.5 0
Sphaeroforma 0 0.2 0 0 0 0 0 0 0 0.8 0.1 0 0.3 0.2 1.5 0 0 0 0.2 0.4 0.7 0 0 0 0.7 0 0 0 0 0.1 1.3 0.1 0.3 0 4.4 0 0 0 0 0 0 1.1 0.4 1.7 0 0.2 0.3 0 0.2 0 0 0.1 0.1 0.4 0 0.3 0 0 8.1 1 0.1
Stereum 0.2 0 0 0 0 0 0 0 0 0.3 0 0 0 0.2 0 0 0 0 0 0 0 0.1 0.1 0.1 0 0 0 0 0 0.1 0.4 0 0 0 0 8 0 0 0.3 0 0 0 0 0 0 0 0 0 0 0 0.9 0 0 0 0 0.1 0 0 0 0 0
Talaromyces 0 1.5 0 0 0 0.4 1.9 0 3.1 0 0.2 0 0.6 0.1 0 0 0 0 0 0.1 0 0.1 0 0 0 0 0 0 1.5 0.1 0 0.9 0.2 5.9 0 0 0 1.9 0 0 0.3 3.1 0.3 0 0 0.1 0.2 0 0.1 0 0 0 0.2 1.4 0 0.1 0.1 0 0 0.5 0
Tetrapisispora 0 0 0 0 0 0 1 0 0 0 0.7 0 0.5 1.5 0 0 0 0.8 0 1.9 0 1.2 0.9 2.1 0 0 0 0 0.8 0 0 0 0.3 0 2.9 0 0 1.2 2 0 0 0 0.2 0 0 0 3.9 0 0 0 0 0.7 0 0.4 1.3 0.2 0.7 36.4 3.5 1.1 1.8
Thecamonas 0 0 0 0 0.5 0.1 0 0 0 0 0.3 0.2 0.1 0.1 0 0 0 0.1 0.4 0.3 0 0 0.1 0 0 0 0 0.2 0 0.1 2 0.1 0.2 11.8 0 0 0 0.2 0 0.5 0.7 0 0 0 0.1 0 0.4 0.1 0 0 0 0 0.2 0 0 0 0.2 0 0 0.1 0
Thermothelomyces 0 0.1 0 2 0 0 0 0 0 0.3 0.5 0 0.3 0.2 0 0 0 0.8 0 0.3 0 0.4 0.5 0 0 0 0.6 0 0 0.3 0 0 0.3 0 0 0 0.2 0 0 0 0 0 0.2 0 0.6 0 0 0 0.1 0 0 0.2 0.2 0 0 0.6 0 0 0 0.1 0
Tilletiaria 0 0 0 0 0 3.6 0 0 7.9 45.2 2 0 0 0 0 0 0 0 0 1.5 0 0.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 6.5 4.5 0 0.6 0 0 3.7 0 0 0 0 0 0 0 0 0 2.5 0 0 0 0 0
Tilletiopsis 0 0 0 0.1 0 0 0 0 0.5 0.3 0.1 0.7 0.1 0.1 0 0 0 0 0 0.3 1.8 0.1 0.2 0 0.4 0 0.2 0.1 0 0.1 0 0 0.1 0 0 8 0 0.1 0 0 0.7 0 0 0 0.4 0 0.2 0.1 0.1 0 1.9 0 0.4 0.1 0 0.2 0.1 0 0 0.1 0.2
Trametes 0 0.1 0 0 0 0 0.4 0 0 0 0.2 0 0 0 0 0 0 0 0 0.3 0 0.9 0 0.1 0 0 0.4 0.2 0 0.2 0 0 0 0 0 0 0 0 0 0.4 1.5 1.4 0.2 0 2.4 0 0 0 0 0 0 0.1 0.5 0.1 0 0.5 0.1 0 0 0.2 0
Tremella 0 8.5 0 0 0 29.2 0 0 0 0 0 0 0 0 0 0 52.2 0 0 0 0 0 0 20.5 0 0 0 27.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 75.9 0 0 0 0 23.1 0 0 0 26.7 0 0 10.8 0
Trichoderma 0.3 2.6 0.7 0 0 0 2.3 1.3 0 0.3 1.5 1.5 0.2 0.4 1 5.6 0.5 0.2 3 9.5 0.5 5.5 0.8 5 0.5 0 6.9 0.3 1.7 1.2 1.1 8.4 8.6 0 2.6 0 0 0.2 0 6 13.8 0 3.5 0 4.1 0.3 4.4 0 0.1 1.8 0.9 6.9 12 0.4 12 3.7 0.3 9.1 0.4 1.1 2.7
Trichomonas 0 0.5 0 0 1.8 1.1 0.4 0 0.8 2.1 0.3 0 0.6 0.9 5.1 0 0 2.3 0.9 0.5 3.2 0.7 0.2 0.6 0 0 0.6 0.1 0 0.3 0 0.2 0.2 0 0 0 0.3 0.9 1.3 0 0 4.8 2.5 0 0.1 0.4 0 0.2 0.1 0 0 0.3 0.5 1.6 0.8 0.3 0.3 0 0 0.4 1.3
Trichophyton 0 0.1 0 0.4 0 0 0 0 0 0 0 0 0 0 1 0 0 0.9 0.3 0.3 2.3 0.3 0 0.3 0 0 0 0 0 0 0 0 0 0 1.9 0 0 0 0 0 0 2.8 0 0 0 0 0 0 0.1 0 0 0 0 0.1 0.2 0.5 0.3 0 0 0.3 0
Trichosporon 0 0.1 0 0 0 0 0 0 0 0 0 0 0.7 0.9 0 0 0 0 0 3 0 0 0 0 0 0 0 1.7 0 2.2 0 0 0.3 0 0 0 0 3.3 0 2.3 0 0 0.7 0 0 0 0 2.2 0 0 0 0 0 0 0 0 0 0 0 0 0
Tsuchiyaea 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0 0 0 0 0 0 0 0 0.3 0 0.3 0 0 5.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0 0 0 0 0 0 0 0
Uncinocarpus 0 0.3 0 0 0 0 1.3 0 0 0 0 0 0 0 0 0 0 0.1 0 0 0 0.1 0 0 0 0 0 0.1 2.1 0.6 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0.6 0 0 0 0.4 0.2 0.2 0.9 0.5 0 0 0 0
Vanderwaltozyma 0 0.2 0 0 0 0 0 0 2.9 3.1 0 0 0 0 0 0 0 0 0 0.6 0 0.8 0 0.2 0 0 0 0 0 0 0 0.2 0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0 1 0 0 0 0 0 0
Wallemia 0 2 0 0 0 1.3 0 0 0 0 0 0 3 0 0 0 0 0 0 0 0 0 0 0 0 0 3.7 0 3.3 0 0 0 9.4 0 0 0 0 0 0 0 0 0 1.5 0 0 0 0 0 0 7.6 0 0 0 0 0 6.2 0 0 0 0 0
Wickerhamiella 0 0 0 0 0 0 0.8 0 0 0 0.1 0 0 0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0 0 0 0 0 0 0.1 11.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0 0 0.1 0 0 0 0 0.1 0 0 0 0
Wickerhamomyces 0 0 0 0 0.2 0 0 0 0 0.3 2.8 0 0.1 0 0 0 0 0 0 0 0 0 0 1.3 0 0 0 0 0 0 0 1 1.1 0 0 0 6.6 3.3 0 0 0 0.9 0.5 0 4.1 0.1 0 0 0 0 0 1.7 4.3 2 0.3 0 1 0 0 1.2 0.5
Xylona 0 0.9 0 0 0 0 0 0 0 0 0 0 2.5 2 0 73.4 0 0 0 0 0 0.8 0 0 0 26.6 0 0 0 0 0 0 0 0 0 0 0 0 0 10.8 0 0 0 0 0 0 0 0 0 0 0 2.8 0 0 0 6.9 0 0 0 1.6 0
Yamadazyma 0 0 0 0 0 0 3.7 0 0 0 0 0 0 0 0 0 0 1.6 0 0 0 2.6 0 0.9 0 0 0 0 0 0 0 2.9 0 0 0 0 0 0 3.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9 0 0 0 0 2.1
Zygosaccharomyces 0 0 0 0 0 0 0.4 0 0 0 0.1 0 0 0 0 0 0 0 0 0.2 0 0 0 0 0 0 0.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.8 0 0 0 0.3 0 0 0 0.1 0 0 0 0 0 6.1 0.1 0 0.1
Zymoseptoria 2.5 0.2 4.8 0 0 0 0 0 1 0 0.3 0 0.1 0.7 0 0 0 0.2 0 0.4 0 0.1 0 0 0 0 0 0.2 0.5 0.7 1.8 0 0.9 0 0 0 0 0 0 0 0 0 0 0 0.3 0 0 0.8 0 0 0 0 0 0 0 0.5 0.3 0 0 0 0

Fungi week 12

Genus AFU001-W12 AFU002-W12 ASF001-W12 EDM001-W12 EDM002-W12 EDM003-W12 EDM004-W12 EDM005-W12 HAD002-W12 HAI003-W12 HAI004-W12 HAI006-W12 HAI008-W12 HFX001-W12 HFX002-W12 HFX003-W12 HFX004-W12 HFX005-W12 HFX007-W12 HFX008-W12 HFX009-W12 HFX010-W12 HFX011-W12 JER003-W12 JER006-W12 JER007-W12 JER008-W12 JER009-W12 JER011-W12 JER012-W12 NAZ002-W12 POR001-W12 REH002-W12 REH003-W12 SCH001-W12 SCH003-W12 SCH005-W12 SCH006-W12 SCH007-W12 SCH008-W12 TLV002-W12 TLV004-W12 TLV005-W12 TLV006-W12 TLV007-W12 TLV011-W12 TLV014-W12 TLV016-W12 TLV018-W12 TLV019-W12 TLV020-W12 TLV021-W12 TLV022-W12 TLV023-W12 TMC001-W12 TMC002-W12 TMC003-W12
Acaromyces 0.3 0.2 0.3 0.1 0.1 0.2 0 0.3 0 0 0 0.1 0.3 0 0 0.2 0.6 0.2 0.2 0 0.3 0.1 0 0 0 0 0 0 0 0 0 0 0 0.1 13.6 0.1 0 0.2 0.4 0 0.1 0.4 0 0 0 0 0 0 0.1 0 0 0 0 0.6 0 0 0.2
Agaricus 0.2 0.4 0 0.1 0 0 0 0 0.2 0 0 0.1 0 0 0 0 0 0 0.1 0.3 0 0 0 0 0 0 0.1 0 0.2 0 0 0 0 0 9.1 0 0 0 0 0 0 0 0 0 0.2 0 0 0 0 0 0 0.1 0.1 0 0 0 0
Alternaria 0 0 0 0 0 0.2 0 0 2.3 0 0 0 0 0.4 0 0 0 0 0 0 0 0 0 1.4 0 0 0 0 0 0 0 0 1.1 0 0 0.1 0 0.1 0 0.1 0 0 0 0 0.1 0.6 0 0 0.2 0 0 0.1 0 0 0 0 0
Amorphotheca 3.5 0 0 0 0 0 0 0 0 3.6 0 0.2 0.7 0 0 0 0 0.5 0.4 0 0 0 0.5 0 0 0 0 0 0 0 0 0 0 0.6 0 0 0 0.2 0 0.3 0 0 0 0 0 1.7 0 0 0 0 0 0.3 0.5 0 0 0 0.3
Anthracocystis 0 0 0 0 0 0.5 0 0 0.8 2.8 0 0.2 0.2 0.4 0.2 0 0.3 0 0.1 0 0.3 0.6 0 0 0 0 0.5 0 0 0 0 0 0 1 0 0.8 0 0.1 0 0 0 0.5 0.1 1.2 1 0 0 0.2 0.3 0 0 0 0 1.7 0.1 0.8 0.3
Ascoidea 3.9 0 0 0.1 0 0 0 0 2.3 0 2.1 0.5 2.7 0 0 0 1.8 0 6.3 0 0 0 0 0 0 0 1.3 4.2 2.5 0.4 0 0 0 0 0 1.2 0 0.3 0 0 4.1 0 0 0 0 0 0 0.4 0.5 0.4 0 0.4 0 0 0.2 0.3 0
Aspergillus 2.9 2.2 1.2 1.3 9.7 15.4 11.5 21 2.5 26.7 1 13.1 7.7 8.5 7.5 8.6 9.3 12.7 3.6 0.1 24.1 7.3 3.6 1.4 13.4 20.5 8 1.2 3.1 0.4 10.2 0 0.4 13.4 0 2.8 5 3.8 9 4.8 0.1 9.1 4.7 1.2 3.1 0 1 2.5 6.9 1.2 15.5 12.8 2.7 5 6.6 10.5 8.3
Aureobasidium 0 0 0 0 0 12.3 0 0 0 0 0 15.2 19.7 6.4 0 0 0 12.7 0 29.8 0 0 0 0 0 0 0 0 27.3 0 0 0 0 0 0 12.2 0 0 41 0 24.4 0 0 38.3 45 0 0 5 12.2 0 0 17.6 15.7 0 2.7 2.7 37.8
Babjeviella 0 0 0 0 0 0 0 0 0 0 0 0.8 0 0.4 0 0 0 0 0 0 0 0 0.5 0 2.6 0 0 0 0 0 0 0 0 0 0 0 2.2 2.1 0 0 0 0 1 0.8 0 1.7 0 0 0 0 0 0.9 0 0 0 0 0
Batrachochytrium 0 0.2 0 0 0 0 0 0 0 0 0 0 0 0.3 0 0.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0 0 0 0.5 0 0 0 0 3.3 0 0 0 0 0 0.8 0 0 0.3 0
Bipolaris 0 0 0 0 1.4 0 0 1.8 0 0 0 0 0.2 0.2 0.1 0.2 0 0 0.1 0 0.4 1.6 0 4.5 0 0 0.4 0.8 0.2 0.2 1.4 0 0 0 0 0.4 0 0.2 0.5 0.1 0 0.2 0 0 0 0 0 4.8 0 0 0.1 1.1 0.6 0 2 0.5 1.7
Candida 0.1 0.4 0 1.1 0 0.1 0 0.5 0.4 0 0 0.1 0 0.3 0 3.8 0.2 0 3.1 0 3.1 0 0.2 0.5 0 0 0.1 60.8 0.3 0.2 0 0 0 0.2 0 0.1 0.1 3.5 0 2.2 5.7 0.7 0 0 0 0.4 0 0.2 0.1 0 6 1.1 0.4 0 0.2 2.8 0.1
Capronia 0 0.2 0 0 0.6 0 3.3 1 0 0.4 0 0.1 0 0.4 0 0.2 1.2 0 0 0 0.2 0 0.3 0 0.1 0 0 1.8 0.1 0 0 0 0 0.1 0 0 0.8 0.1 0 0 0 0.7 0 0.6 0 0 0.2 0.4 0 0 0 0 0 0 0.2 0 0.7
Chaetomium 0 0.5 0 0.2 0.7 2.1 0 0 2.7 0 0 1.3 0.2 0.7 0.3 0 2.6 0 0.4 0.9 1.4 0 0.2 0 2 19.3 0 0 0.8 0 0 0 0 6.7 0 0.7 0 0.8 1.1 0.8 0 0 0.6 0.6 0.7 0.6 0 1.1 1.3 0 0 0.3 0.5 0 0.7 0 2.8
Cladophialophora 0.2 0.1 0 1.1 0.1 1.3 0 0 0 0.4 19.4 0.1 0.1 0.2 2.5 10.3 30.7 0 7.8 0.1 0 9.9 12.6 0.3 27 0 14 0 7.1 0 0.7 0 0 6.2 0 0 0 0.1 0 0.2 34 0.2 0 0 19.7 86.1 0.6 13.2 0.3 0 12.2 10.9 0.1 0 8.4 8.7 10.1
Clavispora 0 0.2 0 0.2 0 2.3 0 0 0 0 0 0.1 0 0 0 0 2.2 5.2 0 0 0 1.7 0 0 0 0 0 0 0 0 0 0 0 0 0 2.1 0 0 0 0 0 1.9 0 0 0 0 25.2 0.1 0 0 0 0 0 0 0 4 0
Coccidioides 0 0.5 0 0 0.5 0 0 0 0 0 0 0.3 0 0.3 0 0 0 0 0.4 0 0 0 0.1 0 0 0 0 0 0.2 0.1 0 10.8 0 0 0 0 0.4 0 0 0.1 0.4 0 0 0 0 0 0 0 0 0.1 0 0.2 0.2 0 0 0 0
Colletotrichum 0 0.3 0 0 0.5 7.4 0 3.1 0.4 0 0.8 0.4 0.8 1 0.5 2.1 2.1 0.4 1.7 0 0.1 0.1 1.1 0 0.7 0 0 0 1.4 0.3 2.8 0 0 3.1 0 0.6 0.1 0.7 0.4 0 0 2.8 0.5 0 0 0 0 0.4 0.7 0 0.4 1.8 0.7 6.1 0.8 1.7 0.1
Coniophora 0 0 0 0 0 0 0 0 0 0 0.1 0 0.1 0.1 0 0.3 0.1 0 0 0 0 0 0 0 0 2.4 0.1 0 0 0 0 0 0 0.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0 0 0 0 0
Coniosporium 2.1 0.3 0 0 0.6 0 0 0 0 0 0 0.3 0 0.4 0 0.5 0 0 0 0.6 0 0 0.3 0 0 0 0 0 0.4 0 0 0 0 1 0 0.6 0 0.1 0 0.3 0 0 0 0 0 0 0 0.2 1.1 0 0 0.3 0.2 0 0 0.2 1.7
Cryptococcus 0 0 0 0 0 0 0 0.3 0 0 0.1 0.1 0 0 0 0.2 0.1 0 0.1 0.5 0.5 0 0.1 0 0 0 0.1 0.8 0 0 0 0 0 0.1 9.1 0 0 0.1 0 0.1 0.3 0 0.1 0 0 0 0 0 0.1 0 0.2 0.1 0 0 0.1 0 0
Cyphellophora 23.5 0 0 0.5 0 11.4 0 0 0 0 12.8 3.3 8.9 6.4 14.1 0 9.8 0 2.5 0 11.2 22 0 0 6.4 0 5.4 0 12.9 0 0 0 50.1 2.3 0 0 0 0 0 4.6 0 0 0 0 0 0 0 5 3.2 0 13.2 3 17.4 0 0 7.1 0
Debaryomyces 0 0.3 0 0 0 3.6 0 0 0 0.4 0.1 0.1 0 4.5 0 0 0 0 0 0 0.1 0.3 0 0 0 0 0.1 0 0.2 2.3 0 0 0 0.2 0 3 0 0 0 0 0.1 0 0 0 0 0 0 0 0.5 1.1 1.6 0 0.1 0 0 3.4 0
Dichomitus 0 0 0 0.1 0 0.3 0 0 0 0.8 0 0.1 0 0.1 0 0 0.1 0 0 0 0.2 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0 0 0 0 0 0 0.1 0.1 0.1 0.1 0 0 0.2 0 0.1 0 0 0 0 2.2 0 0 0.1
Exophiala 0.1 0 74.8 1.9 21.5 0.3 0 0.5 0 0.4 47.3 12.1 0.2 0.1 0 0.2 0.1 0 25.5 0 1.2 12 15.7 0 0 0 9.8 0 0.1 0.3 0 0 0 0.2 0 0 76 0.8 10.6 50.7 0 0.4 0.7 34 0.1 0.4 0.3 0.5 2.9 0 0.1 10.5 0 0 14.4 18.9 0.5
Fonsecaea 16.5 0.2 0 0.1 0 0 0 0 55.3 0 0 1.7 0 13.3 0.2 36 19.2 0 1.7 2.8 4.3 0 0 0 4.8 0 0.1 0.8 1.9 0 20.7 0 0 7.3 0 3.9 0 2.4 0.3 0 0 0 0 0 0.2 0 0 3.8 0 6.6 0 2.4 0.1 0 6.3 3.1 0.4
Fusarium 0.2 0.3 0 0 0 1.4 6.6 2.1 1.9 0 0.1 0.3 0.4 0.8 0.5 2.5 0.4 0 0 0.1 0 0.2 0.8 0.3 0.4 0 1.3 0 1.2 0.8 0 0 1.9 2.1 0 0.2 0 0.1 0.9 0.6 0 0.4 0.5 0.1 0.4 0 0 1.4 1.1 0.2 3.6 0.4 0 1.7 0.4 0.1 0.1
Heterobasidion 0 0 0 0 0 0 0 0.3 0 0 0 0 0 0.1 0.1 0.3 0 0 0.2 0 0.2 0 0 0 0 0 0 0.6 0.1 0.1 0 0 0 0.8 0 0.1 0 0 0 0 0 0.2 0.3 0.1 0 0 0 0.1 0 0 0 0.1 0 2.2 0 0 0.2
Hyaloscypha 0.5 0.1 0 0 0.7 0 0 1.4 0 0 0 0.6 1 0.3 0.4 1.5 0.8 6.8 0.4 0 3.1 0.3 0.4 0 0 0 0 0.6 0 0.6 0 0 0 0 0 0 0 0.6 0.1 0.3 0 0 0.2 0 0 0 0 0.1 0.6 0 1 0.1 0 0 0.6 1.2 0
Hyphopichia 0 0 0 0 0 0 0 0 0 4.8 0 0 0 1.1 0.8 0 0 4.4 2.6 0 3.6 0 0 0 0 0 1.6 0 0 0 0 0 0 0 0 0 0 0.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.5 0 0.5 3.8 0
Kazachstania 0 0.7 6.6 0 0.4 0 0 0 0 0 0.2 0.1 0 0 2.4 0 0 0 0.4 0 0.6 0 1.3 0 0 0 3.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.4 2.3 4.5 0 0 0 2 0
Kwoniella 5.3 0 7.6 0 2 0 0 5.2 10.9 0 5 0 3.7 5.9 0.9 2.6 1.6 0 1.7 0 2.1 5 2.5 38.2 0 0 2.9 0 1.6 0 0 0 0 3 0 1.9 4.7 1.5 2.9 1.9 9 0 3.8 3.2 0 0 0 1.5 5.6 0 4.8 0 0 0 18.2 3.4 0
Lodderomyces 0 0 0 0 0 0 0 0 0 0 0.2 0.4 0 0.3 0 0.3 0.5 0 0.2 0 0 0 0.2 0 0 0 0 0 0 0 0 13.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0 0 0 0 0 0 0.1 0.2 0
Malassezia 0.7 0.5 0.5 0.3 0.2 0.8 0 1.6 6.2 0 0.2 0.1 0.2 0.1 0.1 0.2 0 0 0 52.5 0.3 0 0 0.9 0 1.2 0.3 2 0.1 0.1 0 0 0 0.2 9.1 0.4 0.7 0.1 0.2 1.8 0 1.1 0.7 0.2 0.4 0 0.2 0.1 0 0.3 0.2 0.1 0.1 1.1 0.2 0.1 0.7
Metarhizium 0 0.8 0 0 0.1 1.2 0 0 0 0 0.2 0 0 2.3 0 0 0.3 1.7 0 0 0 0.7 0 0 0 0 0.7 0 0.3 0 0 16.2 0 0 0 2.7 0 1.3 0.5 0 0 0 0 0 0 0 0 0.6 0 0 0 1.8 0 0 0.1 0.6 0.4
Monosiga 0 0 0 0 0 0.2 0 0 0 0 0.1 0.1 0 0.5 0.1 0 0.1 0 0 0.1 0 0 0.5 0 0.2 0 0 0 0 0 0 0 0 0.3 22.7 0 0 0 0.3 0 0 0 0.1 0 0.1 0 0 0.1 0.1 0 0 0.1 0 0 0.1 0.2 0.1
Nosema 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Parmotrema 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2.2 0 0 0
Penicilliopsis 0 0 2.7 0 0 2.1 0 2.3 0 0 0 2.2 0 0 0 0 0 0 0.8 0 0 2.4 0 0 1.3 0 1.4 0 2 0 0 0 0 1.8 0 0 3.9 0.6 1.5 0.8 0 1.5 3.5 0 5.2 0 0 0.2 0.5 0 0 1.9 2 0 0.1 0.4 1.2
Penicillium 0 1.3 0.5 0 3.1 0 0 0.5 0 1.4 0 0.3 0.3 0 0.1 0.4 0 0 0.2 0 0.1 0 0.1 0 0.6 0 0.1 0 1 0.1 0 0 1.9 1.2 0 0 0 0 0 0.3 1.8 0.5 0.1 0 0.3 0 0 0 0.1 0 1.7 0.6 0.2 3.4 0 0.1 0
Phycomyces 9 0 0 0 0 4.8 0 3.8 0 0 4.4 0.1 6.6 11.3 0.3 0 1.5 5.3 0 0 1.2 0.9 0.1 2.9 0.5 21.7 0 0 4.1 0.1 1.4 0 0 4.1 0 0 0 1 0 2.8 0 0 0 6.6 0 0 0 1.4 0.5 0 0 3.7 1.3 0 0.7 1.3 0
Pichia 0.1 0 0 0 2.3 5.1 0 0.3 0 0 0 0.1 3 0.1 0 0 0.1 0 0 0 0 4.2 0 0 1.8 0 3.2 0 0.1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0 1.5 0 0 0.1 0 1.1 0 0 0
Pochonia 0 0 0 0 0 0.2 0 0 0 0 0 0 0 0.1 0 0.1 0.1 0 0.2 0 0.3 0 0 0 0 0 0 0 0 0 0 0 0 0 9.1 0 0 0.1 0.1 0 0 0 0 0 0 0 0 0.1 0.1 0.1 0.1 0 0 0 0.1 0.1 0
Postia 0 0 0 0 0 0 0 0 0 0 0 0.1 0.2 0 0 0 0.1 0 0 0 0.2 0 0 0 0.2 1.2 0 0 0.1 0 0 5.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0 0 0.1 0.3 0 0 0 0 0
Rhizophagus 0.2 0.9 0 0.1 0.8 0.2 3.3 0.8 1 0 0.1 0.5 0.6 0.3 0.1 0.2 0.2 0 0.2 0.3 0.5 0.1 0.1 0.3 0.1 0 0.1 0.4 0.1 0.4 0.4 2.7 0 0.1 9.1 0.1 0.2 0.1 0.2 0.4 0.2 0 0.3 0 0.1 0.9 0 0.2 0.3 0.2 0.5 0.2 0.2 1.7 0.2 0.2 0.2
Rhodotorula 0 0 0 0.1 0.5 4.9 0 3.2 4.3 0 0 1.2 2.3 4.1 0.6 0.6 1.6 0 0 1 11.1 0.7 0.2 0 0.8 22.3 1.2 1.6 1.6 0 4.2 0 0 3.4 0 0 0 1 4.7 0 0 2.8 0.8 3.2 1 0 5.1 2.7 1.8 0.6 0 1.1 2.3 8.9 1.2 2.3 2.5
Saccharomyces 0.2 44.3 3.7 90.3 34.3 3.9 75.4 0.5 0 41.2 2.5 29.1 31.1 0 8.4 17.4 4 0.1 0 8.9 14.3 0 0 25.5 23.9 0 0 0 9.5 88.6 46 0 41.8 0.1 0 5.7 0 0 1.2 16.4 0 7.6 77.3 0 9.5 0 0 14.8 0 76.6 0.1 0 17.4 50.8 6.1 0 4
Saitoella 0 0 0 0 0 0 0 3 0 0 0 0 0 0.6 0 0 0.7 0 0 0 0 0 0.3 0 0 0 0 18.9 0 0 0 51.4 0 0 0 0 0 0.5 0 0 0 0 0.3 0 0 0 0 0 0 0 0 0 0 0 0.8 0.4 2
Scheffersomyces 0 0 0 0 0 0 0 23.4 0 0 0 0 0 9.8 0 0 0 19.3 0 0 0 0 0 0 0 0 14.9 0 0 0 0 0 0 19.7 0 0 0 0 0 0 15.4 0 0 0 0 0 0 2 23.2 3.5 10.2 0 0 0 0 0 7.8
Spathaspora 0 0 0 0.3 0 0 0 0 0 0 0 0.7 0 2.3 0 0 0 0 1.2 0 0 0 1 0 0 0 0 0 1.7 0 0 0 0 0 0 0 0 0 5.3 1.3 0 0 0 0 0 0 22.5 4.8 0 0 8.3 0 0 0 0 0 0
Talaromyces 0 0.9 0 0 0 2.5 0 0 0 0.4 0 0.7 0.1 1.7 0 0.3 0.1 0 2.1 0 0.9 0 0.1 0 0 0 0.1 0 0.1 0.6 0 0 0 0.2 0 0.1 0 1.3 0 0 0.1 0.2 0 0 0 0 34.5 0.2 0 1.7 0 1.7 0.7 0 0.8 0.5 1.4
Tetrapisispora 0 0 0 0 0 1.6 0 0 0 6.4 1.2 0.4 2.4 2 0 0 0 0 0.8 0 0.6 1.8 0.9 0 0 0 1.9 0 0 0.4 0 0 0 0 0 0 0 0.9 0 0 0 0 0 0 1.7 0 0 1.2 0 1 3.6 0 1 0 3.8 3.4 0
Tilletiaria 0 0 0 0 0 0 0 0 0 0 0 0.6 0 0 1.9 0 0 0 0 0 0 0 0 0 3.4 0 0 0 0 0 0 0 0 0 0 0 0 3 0 4.1 0 0 0 0 0 0 0 1.1 0 0 0 0.7 0 0 0 0.5 0
Tremella 0 36.5 0 0 0 0 0 0 0 0 0 0 0 0 46.4 0 0 0 18.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42.3 0 50.1 0 0 0 59.7 0 0 0 0 0 18.3 26.1 0 0 0 28.5 0 10 0 0
Trichoderma 0 1.6 0 0.6 8.5 0.4 0 5.3 0.2 0 0.1 1.6 0.1 1 1.9 0.6 1.1 4.2 2.9 0.2 2.7 5.6 0 0 0.4 1.2 8.9 0 6.9 0.2 1.8 0 0 0.4 9.1 10.8 0.4 8.2 1.4 0 0.5 0.8 0.3 0.1 0.1 0 0 4.3 0.1 3 10.3 0.4 1.4 2.2 5.1 4.7 0.3
Trichosporon 0 0.5 0 0 0.3 2.4 0 3.6 0 0 0 0.2 0 0 0 0 0 2.5 0 0 0 0 0 0 0.8 0 0 0 0.6 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.1 0 0 0 1.2 0
Uncinocarpus 0 0 0 0.1 0 0 0 1 0 0 0 0.3 0 0.5 0 0 0 0 0 0 1.1 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0 0 0 0.5 0.3 0 0 0 0 0 0 4.5 0 0.2 0.3 0 0 0 0 0 0 0 0.2
Verruconis 0 0 0 0.1 0.1 0 0 0 0 0 0 0 0 0.1 0 0.2 0 0 0 0 0 0 0 0 0 0 0.1 0 0 0.1 0 0 0 2.2 0 0 0 0.2 0.6 0 0 0.2 0.1 0 0 0 0 0 0.2 0 0 0.2 0 0 0 0 0.1
Wallemia 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0 0 0 1.4 18.2 1.5 0 0 17 53.9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7.1 5.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Wickerhamiella 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0 0 0.1 1.2 0.1 0 0 0 2.1 0 0 0 0 0 0 0 0 0.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Wickerhamomyces 27.9 0 0.3 0 1.4 0 0 0 0 0 0 1.9 0 1.2 1.7 0.6 0 0 0.1 0 0 0 0 0.3 0 0 3.4 0 0 0 0 0 0.4 2.2 0 2.8 0 1.4 2 0 0.1 0 0 0 0 0 0 0 0 0 0.1 3.4 0 0 1.6 0 0.1
Xylona 0 0 0 0 4.2 0 0 0 0 0 0 1 0 0 0 0 0 0 4 0 0 0 0 15.3 0 0 7.4 0 4.3 0 0 0 0 0 0 0 0 1.1 2.8 0 0 0 0 3.3 8.6 0 0 0.8 1.8 0 0 6.3 0 0 0.9 0 5.6
Yamadazyma 0 0 0 0 0 0 0 0 0 0 0 0.7 0 0 3.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0.9 0 0 0 0 0 0.4 0 0
Zymoseptoria 0 0 0 0.1 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0 0 0 0 0.6 0 3.8 0 0 0 0 0 0.1 0 0 0 0 0 0 0 0 0.1 0 1.4 0.5 0 0 0 0 0 0.1 0.1 0.6 0 0 0.9 0 0.1 0.3 0

Functional analysis

This has been carried out using HUMAnN3 with only the reads that were classified as fungal using Kraken2. There are not many classified functions though, probably due to the low numbers of fungal reads (usually in the order of tens to hundreds).

Gene family richness

W0:

W06:

W12:

KO richness

W0:

W06:

W12:

Pathway richness

W0:

W06:

W12: